home *** CD-ROM | disk | FTP | other *** search
/ Final Fantasy the Spirits Within Cardz / Final Fantasy the Spirits Within CD Cardz - Disc 3: Dr. Sid.iso / pc / assets / sid-main.dcr / 00034_FullScreen-script.ls < prev    next >
Encoding:
Text File  |  2001-07-22  |  508 b   |  30 lines

  1. global checkForFullScreen, mtime
  2.  
  3. on beginSprite me
  4.   checkForFullScreen = 0
  5. end
  6.  
  7. on mouseUp me
  8.   if checkForFullScreen = 1 then
  9.     checkForFullScreen = 0
  10.   else
  11.     checkForFullScreen = 1
  12.   end if
  13.   puppetSound(2, "Clicker")
  14.   if not checkForFullScreen then
  15.     sprite(1).rect = rect(184, 120, 616, 360)
  16.   else
  17.     sprite(1).rect = rect(61, 52, 738, 428)
  18.   end if
  19.   puppetTransition(9, 0.10000000000000001, 20, 0)
  20.   updateStage()
  21. end
  22.  
  23. on mouseWithin me
  24.   cursor(280)
  25. end
  26.  
  27. on mouseLeave me
  28.   cursor(-1)
  29. end
  30.